home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20030409-20031118 / 000139_joyce_haferman@yahoo.com_Fri Jun 6 14:05:28 EDT 2003.msg < prev    next >
Text File  |  2003-11-18  |  3KB  |  63 lines

  1. Article: 14365 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!nycmny1-snh1.gtei.net!news.gtei.net!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: joyce_haferman@yahoo.com (Joyce)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: cutape
  6. Date: 5 Jun 2003 15:54:18 -0700
  7. Organization: http://groups.google.com/
  8. Lines: 44
  9. Message-ID: <3834495c.0306051454.29aa1356@posting.google.com>
  10. References: <3834495c.0306031601.34eb05ba@posting.google.com> <bbl8ah$pvn$1@watsol.cc.columbia.edu> <3834495c.0306041602.353fa8d6@posting.google.com> <bbnien$ebu$1@watsol.cc.columbia.edu>
  11. NNTP-Posting-Host: 131.120.76.51
  12. Content-Type: text/plain; charset=ISO-8859-1
  13. Content-Transfer-Encoding: 8bit
  14. X-Trace: posting.google.com 1054853659 14480 127.0.0.1 (5 Jun 2003 22:54:19 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: 5 Jun 2003 22:54:19 GMT
  17. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14365
  18.  
  19. fdc@columbia.edu (Frank da Cruz) wrote in message news:<bbnien$ebu$1@watsol.cc.columbia.edu>...
  20. > In article <3834495c.0306041602.353fa8d6@posting.google.com>,
  21. > Joyce <joyce_haferman@yahoo.com> wrote:
  22. > : Yes, I really need to write an IBM mainframe format tape.  So, it
  23. > : sounds like I have to try the tape on the IBM mainframe to see if it
  24. > : can read it.  Does the IBM mainframe read variable block format?
  25. > : 
  26. > I should hope so, but the method for doing it depends on the specific
  27. > operating system -- CMS, MVS, etc.  You can find some information about
  28. > this here:
  29. >   ftp://kermit.columbia.edu/kermit/a/aatape.txt
  30. > : I also need to be able to read EBCDIC tapes coming from an IBM
  31. > : mainframe on an UNIX system.  Do you know any software that runs on
  32. > : UNIX (preferably - Solaris box) that can read an EBCDIC tape that has
  33. > : an IBM label?  I am willing to purchase the software.
  34. > :
  35. > You should be able to do this with dd, except dd doesn't understand
  36. > labels or anything -- it thinks everything on the tape is a file.
  37. > What ostape does is use dd to read a label, then ostape decodes the
  38. > label, then it uses dd to read the file, which it stores under the name
  39. > found in the label.
  40. > If you are a programmer, you should be able to make these programs work
  41. > in Solaris, just as they did in SunOS.  Unfortunately we can't do this
  42. > for you because we don't have tape drives any more to test the result.
  43. > As I said before, it is probably some very minor API difference between
  44. > SunOS and Solaris that is causing file marks to be omitted when writing
  45. > labels, or to be ignored when reading them.
  46. > If you are not a programmer, then perhaps some kind soul reading this
  47. > thread will help.  The programs in question are:
  48. > cutape.c: Writes tapes in ANSI D or OS SL VB format:
  49. >   ftp://kermit.columbia.edu/kermit/tu/tuuwao.c
  50. > ostape.c: Reads OS SL VB tape:
  51. >   ftp://kermit.columbia.edu/kermit/tu/tuuros.c
  52. > - Frank
  53.  
  54. Thanks for the details of how the tape software works - I'll see if
  55. one of the programmers at work can fix it for Solaris.
  56.